/* Options: Date: 2026-04-15 18:53:55 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://kpm_digiofficeapigateway.tbi.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProjectDetailsTBI.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* /** * Get project details */ @Route(Path="/tbi/Projects/{ID}", Verbs="GET") @Api(Description="Get project details") open class GetProjectDetailsTBI : IReturn { /** * ID or GlobalID */ @ApiMember(Description="ID or GlobalID", IsRequired=true) var ID:String? = null companion object { private val responseType = ProjectDetailsTBI::class.java } override fun getResponseType(): Any? = GetProjectDetailsTBI.responseType } open class ProjectDetailsTBI { var Velden:ArrayList = ArrayList() } open class Veld { var Name:String? = null var Type:String? = null var Value:Object? = null var Description:String? = null var GlobalID:UUID? = null }